Skip to content

Latest commit

 

History

History

Double Trouble

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Double Trouble

Author: Marin Radu


Description

This challenge combines Morse code and binary encoding.
You'll decode a sequence where Morse symbols are shown in binary:
dots as zeros and dashes as ones. Unravel it to find the flag.

Requirements

  • Decoding

Solve

Decode the given sequence with these steps:

  1. Binary to Morse: Convert 0 to dots (.) and 1 to dashes (-).
  2. Morse to Text: Translate Morse code to the original message.

A CyberChef recipe can help decode the binary-coded Morse quickly.

Here's a useful CyberChef link for this task.


Flag: CSCTF{b07h_m0r53_c0d3_4nd_b1n4ry_u53_0nly_2_ch4r4c73r5}